Fix some warnings
[adiumx.git] / Plugins / Gaim Service / ESYahooJapanService.m
blob6ebff7cd156edf9de73adb80b69e490a75ce6571
1 /* 
2  * Adium is the legal property of its developers, whose names are listed in the copyright file included
3  * with this source distribution.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6  * General Public License as published by the Free Software Foundation; either version 2 of the License,
7  * or (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
10  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
11  * Public License for more details.
12  * 
13  * You should have received a copy of the GNU General Public License along with this program; if not,
14  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
15  */
17 #import "DCGaimYahooJoinChatViewController.h"
18 #import "ESGaimYahooAccountViewController.h"
19 #import "ESGaimYahooJapanAccount.h"
20 #import "ESYahooJapanService.h"
22 @implementation ESYahooJapanService
24 //Account Creation
25 - (Class)accountClass{
26         return [ESGaimYahooJapanAccount class];
29 - (AIAccountViewController *)accountViewController{
30     return [ESGaimYahooAccountViewController accountViewController];
33 - (DCJoinChatViewController *)joinChatView{
34         return [DCGaimYahooJoinChatViewController joinChatView];
37 //Service Description
38 - (NSString *)serviceCodeUniqueID{
39         return @"libgaim-Yahoo!-Japan";
41 - (NSString *)serviceID{
42         return @"Yahoo! Japan";
44 - (NSString *)serviceClass{
45         return @"Yahoo! Japan";
47 - (NSString *)shortDescription{
48         return @"Yahoo! Japan";
50 - (NSString *)longDescription{
51         return @"Yahoo! Japan";
53 - (NSCharacterSet *)allowedCharacters{
54         return [NSCharacterSet characterSetWithCharactersInString:@"abcdefghijklmnopqrstuvwxyz0123456789_@.-"];
56 - (NSCharacterSet *)ignoredCharacters{
57         return [NSCharacterSet characterSetWithCharactersInString:@""];
59 - (BOOL)caseSensitive{
60         return NO;
62 - (AIServiceImportance)serviceImportance{
63         return AIServiceSecondary;
66 @end